home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / windows / tpwin31.zip / COLORDLG.PAS next >
Pascal/Delphi Source File  |  1992-04-06  |  1KB  |  55 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {       Turbo Pascal for Windows Run-time Library       }
  4. {       Windows 3.1 API Interface Unit                  }
  5. {       Common dialog color dialog's control id numbers }
  6. {                                                       }
  7. {       Copyright (c) 1992 Borland International        }
  8. {                                                       }
  9. {*******************************************************}
  10.  
  11. Unit ColorDlg;
  12.  
  13. interface
  14.  
  15. const
  16.  
  17.   dlg_Color          = 10;
  18.  
  19.   color_HueScroll   = 700;
  20.   color_SatScroll   = 701;
  21.   color_LumScroll   = 702;
  22.   color_Hue         = 703;
  23.   color_Sat         = 704;
  24.   color_Lum         = 705;
  25.   color_Red         = 706;
  26.   color_Green       = 707;
  27.   color_Blue        = 708;
  28.   color_Current     = 709;
  29.   color_Rainbow     = 710;
  30.   color_Save        = 711;
  31.   color_Add         = 712;
  32.   color_Solid       = 713;
  33.   color_Tune        = 714;
  34.   color_Schemes     = 715;
  35.   color_Element     = 716;
  36.   color_Samples     = 717;
  37.   color_Palette     = 718;
  38.   color_Mix         = 719;
  39.   color_Box1        = 720;
  40.   color_Custom1     = 721;
  41.  
  42.   color_HueAccel    = 723;
  43.   color_SatAccel    = 724;
  44.   color_LumAccel    = 725;
  45.   color_RedAccel    = 726;
  46.   color_GreenAccel  = 727;
  47.   color_BlueAccel   = 728;
  48.  
  49.   num_Basic_Colors   = 48;
  50.   num_Custom_Colors  = 16;
  51.  
  52. implementation
  53.  
  54. end.
  55.